:root {
  --white: #ffffff;
  --black: #000000;

  --capital_red: #CA1F34;
	
    --dev_extra_light: dev_extra_light;
    --dev_light: dev_light;
    --dev_reg: dev_reg;
    --dev_med: dev_med;
    --dev_semi_bold: dev_semi_bold;
    --dev_bold: dev_bold;
}


}

* {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {margin:0; padding:0;}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

a,
a:active,
a:focus,
a:hover {
  outline: none;
  color: initial;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover {
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
}

.row {
  margin-left: 0;
  margin-right: 0;
}

/* MAIN FONT USED BY BODY */


@font-face {
    font-family: 'dev_extra_light';
    font-style: normal;
    font-weight: normal;
    src: url(../fonts/AnekLatin-ExtraLight.ttf) format('truetype');
    font-display: swap;
}
@font-face {
    font-family: 'dev_light';
    font-style: normal;
    font-weight: normal;
    src: url(../fonts/AnekLatin-Light.ttf) format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'dev_reg';
    font-style: normal;
    font-weight: normal;
    src: url(../fonts/AnekLatin-Regular.ttf) format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'dev_med';
    font-style: normal;
    font-weight: normal;
    src: url(../fonts/AnekLatin-Medium.ttf) format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'dev_bold';
    font-style: normal;
    font-weight: normal;
    src: url(../fonts/AnekLatin-Bold.ttf) format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'dev_semi_bold';
    font-style: normal;
    font-weight: normal;
    src: url(../fonts/AnekLatin-SemiBold.ttf) format('truetype');
    font-display: swap;
}

/* END OF MAIN FONT USED BY BODY */

html {
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  color: var(--dark-grey);
  font-family: var(--dev_reg);
  font-size: 15px;
}

body {
  overflow-x: hidden;
  overflow-y: scroll;
}

.object-fit {
  object-fit: cover;
  object-position: center;

  object-position: center;
}
/*
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--capital_red);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--black);
}
*/
::selection {
  color: var(--white);
  background: var(--capital_red);
}
/*section {
  position: relative;
}*/

@media screen and (min-width: 1200px) {
	
	.hidden-lg{
    display: none !important;
  }
	
}


@media screen and (min-width: 992px) and (max-width: 1199px) {
.hidden-md {
    display: none !important;
  }
}

@media screen and (max-width: 991px) {
  .hidden-xs,
  .hidden-sm {
    display: none !important;
  }
}

.modal-dialog .modal-content .modal-header {
    padding: 0px 0px;
}
.modal-dialog .modal-content .modal-body {
    padding: 0;
}
.modal-dialog .modal-content .modal-body img {
    width: 100%;
    height: 100%;
}
.modal.my_cart_modal .modal-dialog
 {

    max-width: 480px !important;
    width: 100%;

}


#loading-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 1000;
  }
.spinner {
    border: 6px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 6px solid #3498db;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  